home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / etc / RCS / setuid.c,v < prev    next >
Text File  |  1988-06-27  |  628b  |  44 lines

  1. head     1.1;
  2. access   ;
  3. symbols  ;
  4. locks    ; strict;
  5. comment  @ * @;
  6.  
  7.  
  8. 1.1
  9. date     88.06.27.11.45.22;  author ouster;  state Exp;
  10. branches ;
  11. next     ;
  12.  
  13.  
  14. desc
  15. @@
  16.  
  17.  
  18.  
  19. 1.1
  20. log
  21. @Initial revision
  22. @
  23. text
  24. @/*
  25.  * Copyright (c) 1983 Regents of the University of California.
  26.  * All rights reserved.  The Berkeley software License Agreement
  27.  * specifies the terms and conditions for redistribution.
  28.  */
  29.  
  30. #if defined(LIBC_SCCS) && !defined(lint)
  31. static char sccsid[] = "@@(#)setuid.c    5.2 (Berkeley) 3/9/86";
  32. #endif LIBC_SCCS and not lint
  33.  
  34. /*
  35.  * Backwards compatible setuid.
  36.  */
  37. setuid(uid)
  38.     int uid;
  39. {
  40.  
  41.     return (setreuid(uid, uid));
  42. }
  43. @
  44.